home *** CD-ROM | disk | FTP | other *** search
/ Aminet 44 / Aminet 44 (2001)(GTI - Schatztruhe)[!][Aug 2001].iso / Aminet / dev / debug / Sashimi.lha / source / SafeRawPutChar.asm next >
Assembly Source File  |  1998-09-11  |  389b  |  26 lines

  1. *
  2. * $Id: SafeRawPutChar.asm 1.1 1998/09/11 22:03:16 olsen Exp olsen $
  3. *
  4. * Sashimi -- intercepts raw serial debugging output on your own machine
  5. *
  6. * Written by Olaf `Olsen' Barthel <olsen@sourcery.han.de>
  7. * Public Domain
  8. *
  9. * :ts=8
  10. *
  11.  
  12.     section    text,code
  13.  
  14.     xref    _NewRawPutChar
  15.  
  16.     xdef    _SafeRawPutChar
  17.  
  18. _SafeRawPutChar:
  19.  
  20.     movem.l    a0-a1,-(sp)
  21.     bsr    _NewRawPutChar
  22.     movem.l    (sp)+,a0-a1
  23.     rts
  24.  
  25.     end
  26.